Skip to content

Commit

Permalink
ReadMe: Update mission and vision #26.A
Browse files Browse the repository at this point in the history
  • Loading branch information
CookingWithCale committed Dec 30, 2023
1 parent 5e9b5ad commit af8dd8a
Show file tree
Hide file tree
Showing 54 changed files with 2,865 additions and 3,712 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/artifact.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ assignees: 'CookingWithCale'

## License

Copyright 2023 [AStartup](https://astartup.net); all rights reserved.
Copyright [AStartup](https://astartup.net); all rights reserved.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ RequestFeature

#### Sessions

* CookingWithCale/CookingWithCale#1
* CookingWithCale/.github#1

## License

Copyright 2023 [AStartup](https://astartup.net); all rights reserved.
Copyright [AStartup](https://astartup.net); all rights reserved.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/change.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ assignees: 'CookingWithCale'

## License

Copyright 2023 [AStartup](https://astartup.net); all rights reserved.
Copyright [AStartup](https://astartup.net); all rights reserved.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ RequestFeature

#### Sessions

* CookingWithCale/CookingWithCale#2
* CookingWithCale/.github#2

## License

Copyright 2023 [AStartup](https://astartup.net); all rights reserved.
Copyright [AStartup](https://astartup.net); all rights reserved.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/incident.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ assignees: 'CookingWithCale'

## License

Copyright 2023 [AStartup](https://astartup.net); all rights reserved.
Copyright [AStartup](https://astartup.net); all rights reserved.
7 changes: 3 additions & 4 deletions .github/ISSUE_TEMPLATE/mission.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ title: ''
labels: ''
assignees: 'CookingWithCale'
---

#

## Problem
Expand All @@ -16,7 +15,7 @@ The problem I am addressing on this mission is...

The solution that I'm addressing on this mission is...

### File Affected
### Affected Files

1. `?`

Expand All @@ -34,8 +33,8 @@ Mission

### Sessions

* CookingWithCale/CookingWithCale#9
* CookingWithCale/.github#9

## License

Copyright 2023 [AStartup](https://astartup.net); all rights reserved.
Copyright [AStartup](https://astartup.net); all rights reserved.
9 changes: 5 additions & 4 deletions .github/ISSUE_TEMPLATE/session.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
---
name: Session
about: A mission-driven development mission with a problem-solution analysis
title: 'Session. @2022-'
title: 'Session @2023-'
labels: ''
assignees: 'CookingWithCale'
---

#

1. CookingWithCale/CookingWithCale#9
## Participants

1. CookingWithCale/.github#9

## License

Copyright 2023 [AStartup](https://astartup.net); all rights reserved.
Copyright [AStartup](https://astartup.net); all rights reserved.
6 changes: 6 additions & 0 deletions Extension/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
APP_TITLE = "AStartupMCC"
APP_BASE_URL = "https://astartup.net"
APP_API_USER = "CookingWithCale"
APP_ENV = "development"
APP_TIMEZONE = "America/Los_Angeles"
GITHUB_TOKEN = "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"
39 changes: 0 additions & 39 deletions Extension/Components/Weather/OpenWeather.ts

This file was deleted.

7 changes: 0 additions & 7 deletions Extension/Components/Weather/WeatherCard.css

This file was deleted.

73 changes: 0 additions & 73 deletions Extension/Components/Weather/WeatherCard.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions Extension/Components/Weather/index.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ModelDataCommandStructureDefault, ModelDataCommandStructureSet,
ModelDataProjectsHotDefault, ModelDataProjectsHotSet,
ModelDataProjectsWarmDefault, ModelDataProjectsWarmSet,
ModelDataProjectDefault, ModelDataProjectSet, }
from '../ModelData'
from '../../Model'
console.log("[Background.ts]")

chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
Expand Down Expand Up @@ -47,7 +47,7 @@ chrome.runtime.onInstalled.addListener(() => {
ModelDataProjectSet(ModelDataProjectDefault)

chrome.alarms.create("FeedUpdate", {
periodInMinutes: 1/60,
periodInMinutes: 15/60,
})

chrome.contextMenus.create({
Expand Down
File renamed without changes.
11 changes: 9 additions & 2 deletions Extension/Mutators/ModelData.ts → Extension/Model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,27 @@ import { v4 as uuidv4 } from 'uuid'

export const UsernameDefault = 'CookingWithCale'

/* Data model options that do not get synced with the server. */
export interface ModelAppState {
}

/* Options that when changed triggers the DOM to rerender? */
export interface ModelDataOptions {
username?: string //< AStartup username.
// App State
modal_visible: boolean //< Modal is visible flag.
modal_state: number //< State of the modal.
content_scripts: boolean //< Content scripts enabled.
// Options
username?: string //< AStartup username.
metric_units?: boolean //< Standard (true) or Imperial units.
crew: string //< Default crew.
session?: string //< Current session number.
project?: string //< Current project name.
mission?: string //< Current mission number.
session_focus_length_max?: string //< Max length of a session focus heading.
}

const SessionFocusLengthMax = 100 //< Max length of a session focus heading.

export interface ModelData {
options?: ModelDataOptions //< Model data options.
command_structure?: Object //< Meta model for the incident command structure.
Expand Down
Empty file.
41 changes: 0 additions & 41 deletions Extension/Views/FinanceManager/FinanceManager.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions Extension/Views/FinanceManager/index.tsx

This file was deleted.

Empty file.
Loading

0 comments on commit af8dd8a

Please sign in to comment.