Dmunch04 / Draft

A simple application that manages all your notes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Draft

Draft, a small project by ANF-Studios
A simple application that manages all your notes


GitHub issues GitHub Workflow Status Lines of code

LicenseDiscord ServerDownloadChangelog

About

Draft was formerly known as ANFPad (and initially; List Manager). The development is active and the project is not abandoned.

Using it

You can grab the latest release of Draft at the releases section and run the installer like any other Electron application.
Note: At the moment, the GUI version is only a pre-release, so you would have to use that if you feel eager for it.

I'm living on the Edge, give me the latest features

You can simply grab a pre-release with the latest features or works that are under development. Keep in mind that things may break or appear unexpectedly.

I want to compile my own version

Well, you're in luck, there are two ways instructed in this file:

[RECOMMENDED] Using PowerShell

Prerequisites: PowerShell, Git and NodeJS. Now save the following code in a ps1 (such as run_anfpad.ps1) file and run it with PowerShell.

Now if you're wondering why PowerShell, that's because PowerShell Core is cross platform which means it'll work on all Windows, macOS and Linux which makes life easier.

$desktop = [Environment]::GetFolderPath("Desktop");
cd $desktop;
[Console]::Write("[GIT] Cloning respository...\n");
git clone https://github.com/ANF/Draft.git $desktop\Draft;
[Console]::Write("[NPM] Installing node_modules...\n");
npm install;
# Start Draft
[Console]::Write("[ELECTRONJS] Building Draft...\n");
npm run start;
[Console]::Write("[NPM] Starting...\n");
# Uncomment this part if you want an installer file.
# [Console]::Write("[ELECTRONJS] Creating installer...\n");
# npm run publish;
# [Console]::Write("[NPM] Created installer...");
# cd out\make\squirrel.windows\ia32;
# Invoke-Item .

Doing it manually

  1. Download the repo:
  2. Download the repo
  3. Extract the (downloaded) zip file.
  4. Open up a terminal such as command prompt.
  5. cd into the directory you downloaded.
  6. Run npm install && npm run start

Previews

Light Theme
Light Theme
Dark Theme
Dark Theme
Monokai Theme
Monokai Theme
Markdown Renderer
Markdown Renderer

Further help

You can create an issue or just join the support server.

Chat in the server

About

A simple application that manages all your notes.

License:MIT License


Languages

Language:TypeScript 55.9%Language:CSS 24.1%Language:HTML 17.1%Language:JavaScript 2.8%